os/exec.Cmd.goroutine (field)

10 uses

	os/exec (current package)
		exec.go#L320: 	goroutine []func() error
		exec.go#L552: 	c.goroutine = append(c.goroutine, func() error {
		exec.go#L601: 	c.goroutine = append(c.goroutine, func() error {
		exec.go#L657: 			c.goroutine = nil // aid GC, finalization of pipe fds
		exec.go#L745: 	if len(c.goroutine) > 0 {
		exec.go#L754: 		statusc <- goroutineStatus{running: len(c.goroutine)}
		exec.go#L755: 		for _, fn := range c.goroutine {
		exec.go#L771: 		c.goroutine = nil // Allow the goroutines' closures to be GC'd when they complete.